chore: speed up Codespaces, remove Claude Code, simplify devcontainer#24
Merged
idvoretskyi merged 1 commit intomainfrom Apr 27, 2026
Merged
chore: speed up Codespaces, remove Claude Code, simplify devcontainer#24idvoretskyi merged 1 commit intomainfrom
idvoretskyi merged 1 commit intomainfrom
Conversation
- Drop docker-in-docker, sshd, git features (heaviest contributors to slow cold-starts); docker and ssh remain accessible on Codespaces via host-level tooling - Disable zsh and Oh My Zsh in common-utils to reduce feature install time - Remove build-essential, curl, wget, jq from Dockerfile apt layer (provided by base image and common-utils feature) - Remove dead .ssh directory block from Dockerfile - Move opencode install to updateContentCommand so it is cached by Codespaces prebuilds and not re-executed on every container start - Remove anthropic.claude-code extension and ms-azuretools.vscode-docker extension - Trim CI smoke test: remove claude/docker checks, drop fetch-depth:0 from test job - Update README: remove Claude Code and Docker refs, add Codespaces prebuilds setup instructions, update startup-time estimates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docker-in-docker,sshd, andgitdevcontainer features — the largest contributors to slow Codespaces cold-starts. Docker and SSH remain accessible on Codespaces via host-level tooling.common-utilsto reduce feature install time; default shell is now bash.build-essential,curl,wget,jqfrom the apt layer (already provided by the base image andcommon-utilsfeature) and drops a dead.sshdirectory block.npm install -g opencode-aifrompostCreateCommandtoupdateContentCommand, so it is baked into Codespaces prebuilds and not re-executed on every container start.anthropic.claude-codeVS Code extension,@anthropic-ai/claude-codenpm install, and all related smoke-test checks.ms-azuretools.vscode-docker(consistent with removing Docker-in-Docker).fetch-depth: 0from the test job.Expected startup time improvement
Notes
mcr.microsoft.com/devcontainers/base:ubuntu-26.04is available.